home *** CD-ROM | disk | FTP | other *** search
/ World Tours: Brazil / WorldTours: Brazil.iso / mac / content / main.dir / 00101_Script_again < prev    next >
Text File  |  2007-04-22  |  424b  |  27 lines

  1. property pSelf
  2.  
  3. on beginsprite
  4.   pSelf=sprite(the currentSpriteNum)
  5. end
  6.  
  7. on mouseenter
  8.   if pSelf.member=member("try again") then
  9.     pSelf.forecolor=5
  10.     --cursor 280
  11.   end if
  12. end
  13.  
  14. on mouseleave
  15.   if pSelf.member=member("try again") then
  16.     pSelf.forecolor=255
  17.     --cursor -1
  18.   end if
  19. end
  20.  
  21. on mouseup
  22.   if pSelf.member=member("try again") then
  23.     pSelf.forecolor=0
  24.     tryAgain()
  25.   end if
  26. end
  27.